home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / DB / QueryTool.php < prev    next >
PHP Script  |  2004-10-01  |  2KB  |  53 lines

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP Version 4                                                        |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997-2003 The PHP Group                                |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 2.02 of the PHP license,      |
  8. // | that is bundled with this package in the file LICENSE, and is        |
  9. // | available at through the world-wide-web at                           |
  10. // | http://www.php.net/license/2_02.txt.                                 |
  11. // | If you did not receive a copy of the PHP license and are unable to   |
  12. // | obtain it through the world-wide-web, please send a note to          |
  13. // | license@php.net so we can mail you a copy immediately.               |
  14. // +----------------------------------------------------------------------+
  15. // | Author:  Wolfram Kriesing, Paolo Panto, vision:produktion <wk@visionp.de>
  16. // +----------------------------------------------------------------------+
  17. //
  18. // $Id: QueryTool.php,v 1.3 2004/04/06 12:25:42 quipo Exp $
  19. //
  20.  
  21. require_once 'DB/QueryTool/EasyJoin.php';
  22.  
  23. /**
  24.  * this class should be extended
  25.  * This class is here to make it easy using the base
  26.  * class of the package by it's package name.
  27.  * Since I tried to seperate the functionality a bit inside the
  28.  * really working classes i decided to have this class here just to
  29.  * provide the name, since the functionality inside the other
  30.  * classes might be restructured a bit but this name always stays.
  31.  *
  32.  * @package    DB_QueryTool
  33.  * @version    2002/04/02
  34.  * @access     public
  35.  * @author     Wolfram Kriesing <wk@visionp.de>
  36.  */
  37. class DB_QueryTool extends DB_QueryTool_EasyJoin
  38. {
  39.     // {{{ DB_QueryTool()
  40.  
  41.     /**
  42.      * call parent constructor
  43.      * @param mixed $dsn DSN string, DSN array or DB object
  44.      * @param array $options
  45.      */
  46.     function DB_QueryTool($dsn=false, $options=array())
  47.     {
  48.         parent::__construct($dsn, $options);
  49.     }
  50.  
  51.     // }}}
  52. }
  53. ?>